home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / progs / editor / frexxed / fpl / cmode.fpl < prev    next >
Text File  |  1996-07-19  |  452b  |  14 lines

  1. //»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»» CModeInit() ««
  2. void export CModeInit()
  3. {
  4.    SetInfo(-1, "c_indent_mode", 1);
  5. }
  6.  
  7. //»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»» CMode settings ««
  8. ConstructInfo("c_mode", "","", "LBH","", 0,0,0);
  9. ConstructInfo("c_mode_ext", "","", "GSHW","", 0,0,"*c*h*fpl*");
  10. ConstructInfo("c_mode_exe", "","", "GSHW","", 0,0,"CModeInit();");
  11.  
  12. AddMode(1, "c_mode", "c_mode_ext", "c_mode_exe");
  13. ExecuteFile("CIndent.FPL");
  14.